home *** CD-ROM | disk | FTP | other *** search
/ Cream of the Crop 12 / Cream of the Crop 12 (Part II) / Cream of the Crop 12 (Part II).iso / OS2 / VD08BIN.ZIP / usr / include / db / DBDateField.h < prev    next >
Encoding:
C/C++ Source or Header  |  1996-02-13  |  283 b   |  24 lines

  1. #ifndef _DBDATEFIELD_H_
  2. #define _DBDATEFIELD_H_
  3.  
  4. #ifndef _DBFIELD_H_
  5. #include "DBField.h"
  6. #endif
  7.  
  8. @interface DBDateField : DBField
  9. {
  10. }
  11.  
  12. -(int) day;
  13. -(int) month;
  14. -(int) year;
  15.  
  16. -setDay: (int) aDay;
  17. -setMonth: (int) aMonth;
  18. -setYear: (int) aYear;
  19.  
  20. @end
  21.  
  22. #endif
  23.  
  24.